All Questions
6 questions
2votes
1answer
69views
Poor man's "about::tracing" for llbuild build time summary in JSON file
I used llbuild ninja build --profile PATH to create a JSON file of build summary in the following format: ...
4votes
1answer
172views
Parser for AEC in C++
Many people tell me that C++ is a significantly better language for writing compilers than JavaScript is. So, I've decided to rewrite the compiler for AEC (the programming language I've made) from ...
3votes
0answers
68views
Implementing chat commands [closed]
I'm new to C++ and I'm writting some kind of chat server and client who talk to each other through commands for learning purposes. I serialize and deserialize these commands using a JSON library. My ...
12votes
1answer
689views
C++ Parsing with chain of responsibility
The task was to create the parser for the string input, that would return the std::vector< int > of parsed numeric results and the type of given input (e.g. numbers, division by zero error, out of ...
4votes
2answers
4kviews
Parsing a string as fast as possible that is using comma delimiters
I have made a simple static parser for a bigger program. This parser takes a string that has comma deliminators and I need to separate the strings in to a vector for handling in a different section of ...
7votes
1answer
418views
Assembler listings parser components: Operands parser
I'm building the above mentioned parser. It reads a string of assembler instructions. I want to become a better coder, so I wanted to get a code review to start learning to do things property. As we ...